🧑‍🤝‍🧑
Citizen Facing Forms
Council Wide Digital PlatformNo Code Service CreationGCloud Information
  • Introduction
  • LGaaP Services
  • This Guide
  • Platform Functionality
    • Platform Functionality
    • Integration Error Guidance
  • 💙Benefit/Welfare Forms
    • Introduction
    • eClaim
      • Local Council Tax Support
      • Universal Credit
      • Dynamic Evidence
      • Fast Track
      • Benefit App Integration
      • EDMS Integration
      • Reporting
      • Form Level Settings
      • Form Configuration (Files)
      • Value Add Functionality
        • Call Validate - ID Checking
        • Risk Based Verification
          • Settings
          • Configuration (Files)
    • Calculator
      • Settings
      • Calculator Configuration
    • eChanges
      • Intelligent Change Processing
      • Universal Credit
      • Dynamic Evidence
      • Fast Track
      • Benefit App Integration
      • EDMS Integration
      • Form Level Settings
      • Form Configuration (Files)
      • Value Add Functionality
        • Risk Based Verification
          • Settings
          • Configuration (Files)
    • HBAA - Full Case Review
      • Intelligent Change Processing
      • Universal Credit
      • Review Your Claim
      • Dynamic Evidence
      • Benefit App Integration
      • EDMS Integration
      • Form Level Settings
      • Form Configuration (Files)
    • Self Employed Earnings
      • Settings
      • Configuration (Files)
    • Free School Meal Holidays
      • Integrations
        • Ordnance Survey
        • OpenProcess
          • Dynamic Notifications
          • Issuing Vouchers
        • Loqate - Bank Check
        • DfE - ECS
        • Benefit Check
      • Checking integrations
      • BACS Extract
      • Data Extract
    • Additional Services
  • 💳Council Tax Forms
    • Council Tax Services
      • Introduction
      • Direct Debit
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
        • Direct Debit Email
      • Single Person Discount
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
      • Change of Address
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
        • Notification Configuration
      • Discounts / Exemptions
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
        • Configuration
      • Special Arrangements
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
      • Request a Refund
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
        • Settings
      • Local Council Tax Support
        • Real-time Checks
        • Back-office Automation
        • EDMS Automation
      • RPO Localisation
      • Additional Services
      • Landlord Voids & Lets Processing
        • Real-time Checks
        • Back-office Automation
        • File Format
        • EDMS Notification
  • 🚚Bin / Waste Forms
    • Introduction
    • Report a Missed Bin
      • Back Office Integration
      • Settings
      • Missed Bin Configuration
    • Request a Bin
      • Back-office integration
      • Settings
      • Request a Bin Configuration
    • Bulky Waste Collection
      • Back-office integration
      • Settings
      • Bulky Waste Configuration
        • Bulky Waste configuration - new April 2024
    • Request Assisted Collection
      • Back-office integration
      • Settings
      • Assisted Collection Config
    • Clinical Waste Collection
      • Back-office integration
      • Settings
      • Clinical Configuration
    • Garden Waste Subscriptions
      • Garden Waste Form
      • Back-office integration
      • Settings
    • Waste Localisation
    • Agent Payments
  • 🏭Business Rates Forms
    • Direct Debit
      • EDMS Integration
      • Settings
      • Configuration
    • Relief Application
      • EDMS Integration
      • Settings
    • Moves, Reliefs and Pay
      • EDMS Integration
      • Settings
    • Additional Services
  • 🏪Licensing Forms
    • Temporary Event Notice App
      • Back-office Integration
      • EDMS Integration
    • Taxi Driver - Licence Renewal
      • Back-office Integration
      • EDMS Integration
      • Settings
    • Taxi Driver - Vehicle Licence
      • Back-office Integration
      • EDMS Integration
  • 💚Social Care Forms
    • Social Care Financial Assessments
      • Settings
      • SCFA Calculator
      • EDMS Integration
Powered by GitBook
On this page
  • evidencerulescoactiva.xml
  • Example file
  • evidencerulesxantura.xml

Was this helpful?

Export as PDF
  1. Benefit/Welfare Forms
  2. eClaim
  3. Value Add Functionality
  4. Risk Based Verification

Configuration (Files)

PreviousSettingsNextCalculator

Last updated 1 year ago

Was this helpful?

Configuration files are files that can augment / improve the control you have over the functionality in the form beyond the settings.

Configuration files are generally in XML format and so please ensure the XML file is still valid are you finish your edits. You can check an XML file is valid using the following:

For the RBV, there are 2 and these files relate to the two RBV providers. TransUnion (formerly Coactiva) and Xantura.

evidencerulescoactiva.xml

The evidencerulescoactiva.xml file controls the evidence paragraphs presented to customers, like the evidencerules.xml file but with additional behaviours to dynamically reflect Risk Score.

You don't need to ever change this file. It's just to explain you can if you want to.

The file is largely the same as the evidencerules.xml file but at the top it has a dedicated section that enables the evidence requested to be set for each risk score.

Example file

For example - the following shows the different paragraphs that are applicable where the risk score is 1:

 <Risk riskValue="1">
      <Evidences>
        <Evidence isheader="true">Rule_Header_High</Evidence>
        <Evidence>Rule_NI_Number</Evidence>
        <Evidence>Rule_Identity</Evidence>
        <Evidence>Rule_Partner_Identity</Evidence>
        <Evidence>Rule_Student</Evidence>
        <Evidence>Rule_SavingsAndInvestments</Evidence>
        <Evidence>Rule_Earnings</Evidence>
        <Evidence>Rule_SelfEmployedEarnings</Evidence>
        <Evidence>Rule_OtherIncome</Evidence>
        <Evidence>Rule_Benefits</Evidence>
        <Evidence>Rule_RentOrTenancy</Evidence>
        <Evidence>Rule_OtherMoneyPaidOut</Evidence>
        <Evidence>Rule_CurrentAddress</Evidence>
        <Evidence>Rule_ChildCareCosts</Evidence>
        <Evidence>Rule_PassportBenefit</Evidence>
        <Evidence>Rule_NonDep_Income</Evidence>
        <Evidence>Rule_NonDep_PassportBenefit</Evidence>
        <Evidence>Rule_Universal_Credit</Evidence>
      </Evidences>
    </Risk>

The section after that then covers the rules on which evidence to show from the eligible paragraphs set above. I.e. What are the person's circumstances establishes the evidence blocks applicable. A further check is then done against the risk score rules to see if that evidence block should be shown. So a person would be asked for proof of earnings if their risk score was 1 because this is present in the risk rule for 1:

<Evidence>Rule_Earnings</Evidence>

But it wouldn't be shown where the risk score was 12 because the paragraph for Rule_Earnings does not exist in this risk group:

<Risk riskValue="12">
  <Evidences>
    <Evidence isheader="true">Rule_Header_Low</Evidence>
    <Evidence>Rule_NI_Number</Evidence>
    <Evidence>Rule_Identity</Evidence>
    <Evidence>Rule_Partner_Identity</Evidence>
    <Evidence>Rule_Student</Evidence>
    <Evidence>Rule_SavingsAndInvestments</Evidence>
  </Evidences>
</Risk>

evidencerulesxantura.xml

This file is identical to the evidencerulescoactiva.xml one, except that:

a) It is where the Xantura RBV service is in use

b) It has a risk score range of 1-15 rather than 1-12

💙
https://www.samltool.com/prettyprint.php